@charset "utf-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

body {

	padding: 0;
	margin: 0;
    font-family: "Poppins", sans-serif;
    background:rgba(238, 63, 36);
    color:rgba(255,239,203);
	
}

h1, h2 {
	font-family: "Poppins", sans-serif;
}

.container1 {
	position: sticky;
	z-index: 2;
	top: 0;
	overflow: hidden;
	width: 100%;
	background-color:rgba(238, 63, 36);
    margin: auto;
    border-radius: 2px;
    padding:15px;
	box-sizing: border-box;
	justify-content: flex-end;
	display: flex;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}

.navi {
	list-style: none;
	display: flex;
	flex-direction: row;
	gap: 50px;
	margin-right: 5px;
}

.navi a:link {
	color:antiquewhite;
	font-weight: 400;
	font-size: 1.0em;
	font-family: "Nunito Sans", sans-serif;
    text-decoration: underline;	
}

.navi a:hover {
	color: rgba(2,56,32);
}

/* Home Page Container */
.home-page {
    background-color: var(--primary-red); /* The main background is red */
    padding: 40px 0;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('your-large-burger-img.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    border: 8px solid #FDF1D3; /* Cream border as seen in design */
    display: flex;
    align-items: center;
    padding: 60px;
    color: white;
	overflow: hidden;
}

.hero-text h1 {
	position: absolute;
	bottom: 30%;
    font-size: 6rem;
    line-height: 0.9;
    max-width: 500px;
    margin-bottom: 30px;
	margin-left: 25px;
    text-shadow: 3px 3px 0px var(--primary-red);
}

.learn-more {
	position: absolute;
	top: 70%;
    background-color: var(--bg-cream);
    color: var(--primary-red);
    border: none;
    padding: 12px 25px;
    font-weight: 300;
    border-radius: 20px;
    cursor: pointer;
	font-size: 20px;
}

.hero-slide {
    display: none; /* Hide all slides */
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    align-items: center;
    padding: 60px;
}

.hero-slide.active {
    display: flex; /* Show only active slide */
    animation: fadeEffect 0.8s ease;
}

@keyframes fadeEffect {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between; 
    padding: 0 30px;                
    pointer-events: none;       
    z-index: 10;                  
}

.hero-arrows span {
    pointer-events: auto;           
    cursor: pointer;
    font-size: 2.5rem;            
    color: white;                  
    background: none;              
    transition: transform 0.3s ease;
}

.hero-arrows span:hover {
    transform: scale(1.2);
	
}

/* What Do We Serve Section */
.serve-section {
    margin-top: 50px;
}

.serve-card {
    position: relative; 
    display: flex;
    flex-direction: column;
    background-color: #FDF1D3;
    min-height: 300px;
	max-width: 800px;
	margin: 40px auto;
}
.serve-image {
    flex: 1;
}

.serve-image img {
    width: 100%;
    height: 114%;
    object-fit: cover;
}

.serve-content {
    flex: 1.5;
    padding: 60px;
    color: #1B3022;
}

.serve-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #1B3022;
    display: inline-block;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.serve-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Container for the slides */
.slides-container {
    width: 100%;
	overflow: hidden;
}

.serve-slide {
    display: none; 
    width: 100%;
}

.serve-slide.active {
    display: flex;
	animation: fadeEffect 0.6s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0; /* Adds space from the content above */
    width: 100%;
	align-items: center;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #1B3022;
}

.footer {
    padding: 60px 80px 30px;
    box-sizing: border-box;

}

footer-main {
	display: grid;
	grid-template-columns: 2 1 1 1;
	column-gap: 40px;
}

.logo{
	font-size: 100px;
	font-weight: bold;
	margin-bottom: 20px;
	width: 10%;
}

footer-brand p{
	max-width: 300px;
    margin-bottom: 25px;	
	font-size: 100px;
}

.btn{
	display: inline-block;
	padding: 10px 24px;
	border: 1px #F5C36A;
	color: #f5c36a;
	text-decoration: none;
	font-size: 14px;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content:flex-start;
    min-height: 100px;
    padding: 1%;
    gap: 25px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col a {
	text-decoration: none;
	color: antiquewhite;
	font-size: 14px;
}

.footer-col a:hover {
	color: rgba(2,56,32);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
	font-size: 12px;
	color: aliceblue;
	border-top: 1px solid rgba(2,56,32);
	padding-top: 20px;
}
